x86 mca: Fix typo of MCA recovery flags
authorKeir Fraser <keir.fraser@citrix.com>
Wed, 24 Jun 2009 10:16:08 +0000 (11:16 +0100)
committerKeir Fraser <keir.fraser@citrix.com>
Wed, 24 Jun 2009 10:16:08 +0000 (11:16 +0100)
The following patch fixes typo of MCA recovery flags.
It should be '<<' instead of '<'.

Signed-off-by: Kazuhiro Suzuki <kaz@jp.fujitsu.com>
xen/arch/x86/cpu/mcheck/x86_mca.h

index cc3e1c1b440ec58d96e4a04a331bcd63658d2120..85c624efe347c9e063c06fb88ffb00c7ab79a803 100644 (file)
@@ -105,13 +105,13 @@ DECLARE_PER_CPU(cpu_banks_t, mce_banks_owned);
 */
 
 /* MCA error has been recovered successfully by the recovery action*/
-#define MCA_RECOVERED (0x1 < 0)
+#define MCA_RECOVERED (0x1 << 0)
 /* MCA error impact the specified DOMAIN in owner field below */
-#define MCA_OWNER (0x1 < 1)
+#define MCA_OWNER (0x1 << 1)
 /* MCA error can't be recovered and need reset */
-#define MCA_NEED_RESET (0x1 < 2)
+#define MCA_NEED_RESET (0x1 << 2)
 /* MCA error did not have any action yet */
-#define MCA_NO_ACTION (0x1 < 3)
+#define MCA_NO_ACTION (0x1 << 3)
 
 struct mca_handle_result
 {